home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / lib-tk / Tix.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  92KB  |  2,154 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. from Tkinter import *
  5. from Tkinter import _flatten, _cnfmerge, _default_root
  6. if TkVersion < 3.999:
  7.     raise ImportError, 'This version of Tix.py requires Tk 4.0 or higher'
  8.  
  9. import _tkinter
  10. WINDOW = 'window'
  11. TEXT = 'text'
  12. STATUS = 'status'
  13. IMMEDIATE = 'immediate'
  14. IMAGE = 'image'
  15. IMAGETEXT = 'imagetext'
  16. BALLOON = 'balloon'
  17. AUTO = 'auto'
  18. ACROSSTOP = 'acrosstop'
  19. TCL_DONT_WAIT = 2
  20. TCL_WINDOW_EVENTS = 4
  21. TCL_FILE_EVENTS = 8
  22. TCL_TIMER_EVENTS = 16
  23. TCL_IDLE_EVENTS = 32
  24. TCL_ALL_EVENTS = 0
  25. import Tkinter
  26. import os
  27.  
  28. class tixCommand:
  29.     """The tix commands provide access to miscellaneous  elements
  30.     of  Tix's  internal state and the Tix application context.
  31.     Most of the information manipulated by these  commands pertains
  32.     to  the  application  as a whole, or to a screen or
  33.     display, rather than to a particular window.
  34.  
  35.     This is a mixin class, assumed to be mixed to Tkinter.Tk
  36.     that supports the self.tk.call method.
  37.     """
  38.     
  39.     def tix_addbitmapdir(self, directory):
  40.         '''Tix maintains a list of directories under which
  41.         the  tix_getimage  and tix_getbitmap commands will
  42.         search for image files. The standard bitmap  directory
  43.         is $TIX_LIBRARY/bitmaps. The addbitmapdir command
  44.         adds directory into this list. By  using  this
  45.         command, the  image  files  of an applications can
  46.         also be located using the tix_getimage or tix_getbitmap
  47.         command.
  48.         '''
  49.         return self.tk.call('tix', 'addbitmapdir', directory)
  50.  
  51.     
  52.     def tix_cget(self, option):
  53.         '''Returns  the  current  value  of the configuration
  54.         option given by option. Option may be  any  of  the
  55.         options described in the CONFIGURATION OPTIONS section.
  56.         '''
  57.         return self.tk.call('tix', 'cget', option)
  58.  
  59.     
  60.     def tix_configure(self, cnf = None, **kw):
  61.         '''Query or modify the configuration options of the Tix application
  62.         context. If no option is specified, returns a dictionary all of the
  63.         available options.  If option is specified with no value, then the
  64.         command returns a list describing the one named option (this list
  65.         will be identical to the corresponding sublist of the value
  66.         returned if no option is specified).  If one or more option-value
  67.         pairs are specified, then the command modifies the given option(s)
  68.         to have the given value(s); in this case the command returns an
  69.         empty string. Option may be any of the configuration options.
  70.         '''
  71.         if kw:
  72.             cnf = _cnfmerge((cnf, kw))
  73.         elif cnf:
  74.             cnf = _cnfmerge(cnf)
  75.         
  76.         if cnf is None:
  77.             cnf = { }
  78.             for x in self.tk.split(self.tk.call('tix', 'configure')):
  79.                 cnf[x[0][1:]] = (x[0][1:],) + x[1:]
  80.             
  81.             return cnf
  82.         
  83.         if isinstance(cnf, StringType):
  84.             x = self.tk.split(self.tk.call('tix', 'configure', '-' + cnf))
  85.             return (x[0][1:],) + x[1:]
  86.         
  87.         return self.tk.call(('tix', 'configure') + self._options(cnf))
  88.  
  89.     
  90.     def tix_filedialog(self, dlgclass = None):
  91.         '''Returns the file selection dialog that may be shared among
  92.         different calls from this application.  This command will create a
  93.         file selection dialog widget when it is called the first time. This
  94.         dialog will be returned by all subsequent calls to tix_filedialog.
  95.         An optional dlgclass parameter can be passed to specified what type
  96.         of file selection dialog widget is desired. Possible options are
  97.         tix FileSelectDialog or tixExFileSelectDialog.
  98.         '''
  99.         if dlgclass is not None:
  100.             return self.tk.call('tix', 'filedialog', dlgclass)
  101.         else:
  102.             return self.tk.call('tix', 'filedialog')
  103.  
  104.     
  105.     def tix_getbitmap(self, name):
  106.         """Locates a bitmap file of the name name.xpm or name in one of the
  107.         bitmap directories (see the tix_addbitmapdir command above).  By
  108.         using tix_getbitmap, you can avoid hard coding the pathnames of the
  109.         bitmap files in your application. When successful, it returns the
  110.         complete pathname of the bitmap file, prefixed with the character
  111.         '@'.  The returned value can be used to configure the -bitmap
  112.         option of the TK and Tix widgets.
  113.         """
  114.         return self.tk.call('tix', 'getbitmap', name)
  115.  
  116.     
  117.     def tix_getimage(self, name):
  118.         '''Locates an image file of the name name.xpm, name.xbm or name.ppm
  119.         in one of the bitmap directories (see the addbitmapdir command
  120.         above). If more than one file with the same name (but different
  121.         extensions) exist, then the image type is chosen according to the
  122.         depth of the X display: xbm images are chosen on monochrome
  123.         displays and color images are chosen on color displays. By using
  124.         tix_ getimage, you can advoid hard coding the pathnames of the
  125.         image files in your application. When successful, this command
  126.         returns the name of the newly created image, which can be used to
  127.         configure the -image option of the Tk and Tix widgets.
  128.         '''
  129.         return self.tk.call('tix', 'getimage', name)
  130.  
  131.     
  132.     def tix_option_get(self, name):
  133.         '''Gets  the options  manitained  by  the  Tix
  134.         scheme mechanism. Available options include:
  135.  
  136.             active_bg       active_fg      bg
  137.             bold_font       dark1_bg       dark1_fg
  138.             dark2_bg        dark2_fg       disabled_fg
  139.             fg              fixed_font     font
  140.             inactive_bg     inactive_fg    input1_bg
  141.             input2_bg       italic_font    light1_bg
  142.             light1_fg       light2_bg      light2_fg
  143.             menu_font       output1_bg     output2_bg
  144.             select_bg       select_fg      selector
  145.             '''
  146.         return self.tk.call('tix', 'option', 'get', name)
  147.  
  148.     
  149.     def tix_resetoptions(self, newScheme, newFontSet, newScmPrio = None):
  150.         '''Resets the scheme and fontset of the Tix application to
  151.         newScheme and newFontSet, respectively.  This affects only those
  152.         widgets created after this call. Therefore, it is best to call the
  153.         resetoptions command before the creation of any widgets in a Tix
  154.         application.
  155.  
  156.         The optional parameter newScmPrio can be given to reset the
  157.         priority level of the Tk options set by the Tix schemes.
  158.  
  159.         Because of the way Tk handles the X option database, after Tix has
  160.         been has imported and inited, it is not possible to reset the color
  161.         schemes and font sets using the tix config command.  Instead, the
  162.         tix_resetoptions command must be used.
  163.         '''
  164.         if newScmPrio is not None:
  165.             return self.tk.call('tix', 'resetoptions', newScheme, newFontSet, newScmPrio)
  166.         else:
  167.             return self.tk.call('tix', 'resetoptions', newScheme, newFontSet)
  168.  
  169.  
  170.  
  171. class Tk(Tkinter.Tk, tixCommand):
  172.     '''Toplevel widget of Tix which represents mostly the main window
  173.     of an application. It has an associated Tcl interpreter.'''
  174.     
  175.     def __init__(self, screenName = None, baseName = None, className = 'Tix'):
  176.         Tkinter.Tk.__init__(self, screenName, baseName, className)
  177.         tixlib = os.environ.get('TIX_LIBRARY')
  178.         self.tk.eval('global auto_path; lappend auto_path [file dir [info nameof]]')
  179.         if tixlib is not None:
  180.             self.tk.eval('global auto_path; lappend auto_path {%s}' % tixlib)
  181.             self.tk.eval('global tcl_pkgPath; lappend tcl_pkgPath {%s}' % tixlib)
  182.         
  183.         self.tk.eval('package require Tix')
  184.  
  185.     
  186.     def destroy(self):
  187.         self.protocol('WM_DELETE_WINDOW', '')
  188.         Tkinter.Tk.destroy(self)
  189.  
  190.  
  191.  
  192. class Form:
  193.     '''The Tix Form geometry manager
  194.  
  195.     Widgets can be arranged by specifying attachments to other widgets.
  196.     See Tix documentation for complete details'''
  197.     
  198.     def config(self, cnf = { }, **kw):
  199.         self.tk.call('tixForm', self._w, *self._options(cnf, kw))
  200.  
  201.     form = config
  202.     
  203.     def __setitem__(self, key, value):
  204.         Form.form(self, {
  205.             key: value })
  206.  
  207.     
  208.     def check(self):
  209.         return self.tk.call('tixForm', 'check', self._w)
  210.  
  211.     
  212.     def forget(self):
  213.         self.tk.call('tixForm', 'forget', self._w)
  214.  
  215.     
  216.     def grid(self, xsize = 0, ysize = 0):
  217.         if not xsize and not ysize:
  218.             x = self.tk.call('tixForm', 'grid', self._w)
  219.             y = self.tk.splitlist(x)
  220.             z = ()
  221.             for x in y:
  222.                 z = z + (self.tk.getint(x),)
  223.             
  224.             return z
  225.         
  226.         return self.tk.call('tixForm', 'grid', self._w, xsize, ysize)
  227.  
  228.     
  229.     def info(self, option = None):
  230.         if not option:
  231.             return self.tk.call('tixForm', 'info', self._w)
  232.         
  233.         if option[0] != '-':
  234.             option = '-' + option
  235.         
  236.         return self.tk.call('tixForm', 'info', self._w, option)
  237.  
  238.     
  239.     def slaves(self):
  240.         return map(self._nametowidget, self.tk.splitlist(self.tk.call('tixForm', 'slaves', self._w)))
  241.  
  242.  
  243. Tkinter.Widget.__bases__ = Tkinter.Widget.__bases__ + (Form,)
  244.  
  245. class TixWidget(Tkinter.Widget):
  246.     """A TixWidget class is used to package all (or most) Tix widgets.
  247.  
  248.     Widget initialization is extended in two ways:
  249.        1) It is possible to give a list of options which must be part of
  250.        the creation command (so called Tix 'static' options). These cannot be
  251.        given as a 'config' command later.
  252.        2) It is possible to give the name of an existing TK widget. These are
  253.        child widgets created automatically by a Tix mega-widget. The Tk call
  254.        to create these widgets is therefore bypassed in TixWidget.__init__
  255.  
  256.     Both options are for use by subclasses only.
  257.     """
  258.     
  259.     def __init__(self, master = None, widgetName = None, static_options = None, cnf = { }, kw = { }):
  260.         if kw:
  261.             cnf = _cnfmerge((cnf, kw))
  262.         else:
  263.             cnf = _cnfmerge(cnf)
  264.         extra = ()
  265.         if static_options:
  266.             static_options.append('options')
  267.         else:
  268.             static_options = [
  269.                 'options']
  270.         for k, v in cnf.items()[:]:
  271.             if k in static_options:
  272.                 extra = extra + ('-' + k, v)
  273.                 del cnf[k]
  274.                 continue
  275.         
  276.         self.widgetName = widgetName
  277.         Widget._setup(self, master, cnf)
  278.         if widgetName:
  279.             self.tk.call(widgetName, self._w, *extra)
  280.         
  281.         if cnf:
  282.             Widget.config(self, cnf)
  283.         
  284.         self.subwidget_list = { }
  285.  
  286.     
  287.     def __getattr__(self, name):
  288.         if self.subwidget_list.has_key(name):
  289.             return self.subwidget_list[name]
  290.         
  291.         raise AttributeError, name
  292.  
  293.     
  294.     def set_silent(self, value):
  295.         '''Set a variable without calling its action routine'''
  296.         self.tk.call('tixSetSilent', self._w, value)
  297.  
  298.     
  299.     def subwidget(self, name):
  300.         '''Return the named subwidget (which must have been created by
  301.         the sub-class).'''
  302.         n = self._subwidget_name(name)
  303.         if not n:
  304.             raise TclError, 'Subwidget ' + name + ' not child of ' + self._name
  305.         
  306.         n = n[len(self._w) + 1:]
  307.         return self._nametowidget(n)
  308.  
  309.     
  310.     def subwidgets_all(self):
  311.         '''Return all subwidgets.'''
  312.         names = self._subwidget_names()
  313.         if not names:
  314.             return []
  315.         
  316.         retlist = []
  317.         for name in names:
  318.             name = name[len(self._w) + 1:]
  319.             
  320.             try:
  321.                 retlist.append(self._nametowidget(name))
  322.             continue
  323.             continue
  324.  
  325.         
  326.         return retlist
  327.  
  328.     
  329.     def _subwidget_name(self, name):
  330.         '''Get a subwidget name (returns a String, not a Widget !)'''
  331.         
  332.         try:
  333.             return self.tk.call(self._w, 'subwidget', name)
  334.         except TclError:
  335.             return None
  336.  
  337.  
  338.     
  339.     def _subwidget_names(self):
  340.         '''Return the name of all subwidgets.'''
  341.         
  342.         try:
  343.             x = self.tk.call(self._w, 'subwidgets', '-all')
  344.             return self.tk.split(x)
  345.         except TclError:
  346.             return None
  347.  
  348.  
  349.     
  350.     def config_all(self, option, value):
  351.         '''Set configuration options for all subwidgets (and self).'''
  352.         if option == '':
  353.             return None
  354.         elif not isinstance(option, StringType):
  355.             option = repr(option)
  356.         
  357.         if not isinstance(value, StringType):
  358.             value = repr(value)
  359.         
  360.         names = self._subwidget_names()
  361.         for name in names:
  362.             self.tk.call(name, 'configure', '-' + option, value)
  363.         
  364.  
  365.     
  366.     def image_create(self, imgtype, cnf = { }, master = None, **kw):
  367.         if not master:
  368.             master = Tkinter._default_root
  369.             if not master:
  370.                 raise RuntimeError, 'Too early to create image'
  371.             
  372.         
  373.         if kw and cnf:
  374.             cnf = _cnfmerge((cnf, kw))
  375.         elif kw:
  376.             cnf = kw
  377.         
  378.         options = ()
  379.         for k, v in cnf.items():
  380.             if callable(v):
  381.                 v = self._register(v)
  382.             
  383.             options = options + ('-' + k, v)
  384.         
  385.         return master.tk.call(('image', 'create', imgtype) + options)
  386.  
  387.     
  388.     def image_delete(self, imgname):
  389.         
  390.         try:
  391.             self.tk.call('image', 'delete', imgname)
  392.         except TclError:
  393.             pass
  394.  
  395.  
  396.  
  397.  
  398. class TixSubWidget(TixWidget):
  399.     '''Subwidget class.
  400.  
  401.     This is used to mirror child widgets automatically created
  402.     by Tix/Tk as part of a mega-widget in Python (which is not informed
  403.     of this)'''
  404.     
  405.     def __init__(self, master, name, destroy_physically = 1, check_intermediate = 1):
  406.         if check_intermediate:
  407.             path = master._subwidget_name(name)
  408.             
  409.             try:
  410.                 path = path[len(master._w) + 1:]
  411.                 plist = path.split('.')
  412.             plist = []
  413.  
  414.         
  415.         if not check_intermediate:
  416.             TixWidget.__init__(self, master, None, None, {
  417.                 'name': name })
  418.         else:
  419.             parent = master
  420.             for i in range(len(plist) - 1):
  421.                 n = '.'.join(plist[:i + 1])
  422.                 
  423.                 try:
  424.                     w = master._nametowidget(n)
  425.                     parent = w
  426.                 continue
  427.                 except KeyError:
  428.                     parent = TixSubWidget(parent, plist[i], destroy_physically = 0, check_intermediate = 0)
  429.                     continue
  430.                 
  431.  
  432.             
  433.             if plist:
  434.                 name = plist[-1]
  435.             
  436.             TixWidget.__init__(self, parent, None, None, {
  437.                 'name': name })
  438.         self.destroy_physically = destroy_physically
  439.  
  440.     
  441.     def destroy(self):
  442.         for c in self.children.values():
  443.             c.destroy()
  444.         
  445.         if self.master.children.has_key(self._name):
  446.             del self.master.children[self._name]
  447.         
  448.         if self.master.subwidget_list.has_key(self._name):
  449.             del self.master.subwidget_list[self._name]
  450.         
  451.         if self.destroy_physically:
  452.             self.tk.call('destroy', self._w)
  453.         
  454.  
  455.  
  456.  
  457. def _lst2dict(lst):
  458.     dict = { }
  459.     for x in lst:
  460.         dict[x[0][1:]] = (x[0][1:],) + x[1:]
  461.     
  462.     return dict
  463.  
  464.  
  465. class DisplayStyle:
  466.     '''DisplayStyle - handle configuration options shared by
  467.     (multiple) Display Items'''
  468.     
  469.     def __init__(self, itemtype, cnf = { }, **kw):
  470.         master = _default_root
  471.         if not master and cnf.has_key('refwindow'):
  472.             master = cnf['refwindow']
  473.         elif not master and kw.has_key('refwindow'):
  474.             master = kw['refwindow']
  475.         elif not master:
  476.             raise RuntimeError, 'Too early to create display style: no root window'
  477.         
  478.         self.tk = master.tk
  479.         self.stylename = self.tk.call('tixDisplayStyle', itemtype, *self._options(cnf, kw))
  480.  
  481.     
  482.     def __str__(self):
  483.         return self.stylename
  484.  
  485.     
  486.     def _options(self, cnf, kw):
  487.         if kw and cnf:
  488.             cnf = _cnfmerge((cnf, kw))
  489.         elif kw:
  490.             cnf = kw
  491.         
  492.         opts = ()
  493.         for k, v in cnf.items():
  494.             opts = opts + ('-' + k, v)
  495.         
  496.         return opts
  497.  
  498.     
  499.     def delete(self):
  500.         self.tk.call(self.stylename, 'delete')
  501.  
  502.     
  503.     def __setitem__(self, key, value):
  504.         self.tk.call(self.stylename, 'configure', '-%s' % key, value)
  505.  
  506.     
  507.     def config(self, cnf = { }, **kw):
  508.         return _lst2dict(self.tk.split(self.tk.call(self.stylename, 'configure', *self._options(cnf, kw))))
  509.  
  510.     
  511.     def __getitem__(self, key):
  512.         return self.tk.call(self.stylename, 'cget', '-%s' % key)
  513.  
  514.  
  515.  
  516. class Balloon(TixWidget):
  517.     '''Balloon help widget.
  518.  
  519.     Subwidget       Class
  520.     ---------       -----
  521.     label           Label
  522.     message         Message'''
  523.     
  524.     def __init__(self, master = None, cnf = { }, **kw):
  525.         static = [
  526.             'options',
  527.             'installcolormap',
  528.             'initwait',
  529.             'statusbar',
  530.             'cursor']
  531.         TixWidget.__init__(self, master, 'tixBalloon', static, cnf, kw)
  532.         self.subwidget_list['label'] = _dummyLabel(self, 'label', destroy_physically = 0)
  533.         self.subwidget_list['message'] = _dummyLabel(self, 'message', destroy_physically = 0)
  534.  
  535.     
  536.     def bind_widget(self, widget, cnf = { }, **kw):
  537.         '''Bind balloon widget to another.
  538.         One balloon widget may be bound to several widgets at the same time'''
  539.         self.tk.call(self._w, 'bind', widget._w, *self._options(cnf, kw))
  540.  
  541.     
  542.     def unbind_widget(self, widget):
  543.         self.tk.call(self._w, 'unbind', widget._w)
  544.  
  545.  
  546.  
  547. class ButtonBox(TixWidget):
  548.     '''ButtonBox - A container for pushbuttons.
  549.     Subwidgets are the buttons added with the add method.
  550.     '''
  551.     
  552.     def __init__(self, master = None, cnf = { }, **kw):
  553.         TixWidget.__init__(self, master, 'tixButtonBox', [
  554.             'orientation',
  555.             'options'], cnf, kw)
  556.  
  557.     
  558.     def add(self, name, cnf = { }, **kw):
  559.         '''Add a button with given name to box.'''
  560.         btn = self.tk.call(self._w, 'add', name, *self._options(cnf, kw))
  561.         self.subwidget_list[name] = _dummyButton(self, name)
  562.         return btn
  563.  
  564.     
  565.     def invoke(self, name):
  566.         if self.subwidget_list.has_key(name):
  567.             self.tk.call(self._w, 'invoke', name)
  568.         
  569.  
  570.  
  571.  
  572. class ComboBox(TixWidget):
  573.     '''ComboBox - an Entry field with a dropdown menu. The user can select a
  574.     choice by either typing in the entry subwdget or selecting from the
  575.     listbox subwidget.
  576.  
  577.     Subwidget       Class
  578.     ---------       -----
  579.     entry       Entry
  580.     arrow       Button
  581.     slistbox    ScrolledListBox
  582.     tick        Button
  583.     cross       Button : present if created with the fancy option'''
  584.     
  585.     def __init__(self, master = None, cnf = { }, **kw):
  586.         TixWidget.__init__(self, master, 'tixComboBox', [
  587.             'editable',
  588.             'dropdown',
  589.             'fancy',
  590.             'options'], cnf, kw)
  591.         self.subwidget_list['label'] = _dummyLabel(self, 'label')
  592.         self.subwidget_list['entry'] = _dummyEntry(self, 'entry')
  593.         self.subwidget_list['arrow'] = _dummyButton(self, 'arrow')
  594.         self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, 'slistbox')
  595.         
  596.         try:
  597.             self.subwidget_list['tick'] = _dummyButton(self, 'tick')
  598.             self.subwidget_list['cross'] = _dummyButton(self, 'cross')
  599.         except TypeError:
  600.             pass
  601.  
  602.  
  603.     
  604.     def add_history(self, str):
  605.         self.tk.call(self._w, 'addhistory', str)
  606.  
  607.     
  608.     def append_history(self, str):
  609.         self.tk.call(self._w, 'appendhistory', str)
  610.  
  611.     
  612.     def insert(self, index, str):
  613.         self.tk.call(self._w, 'insert', index, str)
  614.  
  615.     
  616.     def pick(self, index):
  617.         self.tk.call(self._w, 'pick', index)
  618.  
  619.  
  620.  
  621. class Control(TixWidget):
  622.     '''Control - An entry field with value change arrows.  The user can
  623.     adjust the value by pressing the two arrow buttons or by entering
  624.     the value directly into the entry. The new value will be checked
  625.     against the user-defined upper and lower limits.
  626.  
  627.     Subwidget       Class
  628.     ---------       -----
  629.     incr       Button
  630.     decr       Button
  631.     entry       Entry
  632.     label       Label'''
  633.     
  634.     def __init__(self, master = None, cnf = { }, **kw):
  635.         TixWidget.__init__(self, master, 'tixControl', [
  636.             'options'], cnf, kw)
  637.         self.subwidget_list['incr'] = _dummyButton(self, 'incr')
  638.         self.subwidget_list['decr'] = _dummyButton(self, 'decr')
  639.         self.subwidget_list['label'] = _dummyLabel(self, 'label')
  640.         self.subwidget_list['entry'] = _dummyEntry(self, 'entry')
  641.  
  642.     
  643.     def decrement(self):
  644.         self.tk.call(self._w, 'decr')
  645.  
  646.     
  647.     def increment(self):
  648.         self.tk.call(self._w, 'incr')
  649.  
  650.     
  651.     def invoke(self):
  652.         self.tk.call(self._w, 'invoke')
  653.  
  654.     
  655.     def update(self):
  656.         self.tk.call(self._w, 'update')
  657.  
  658.  
  659.  
  660. class DirList(TixWidget):
  661.     '''DirList - displays a list view of a directory, its previous
  662.     directories and its sub-directories. The user can choose one of
  663.     the directories displayed in the list or change to another directory.
  664.  
  665.     Subwidget       Class
  666.     ---------       -----
  667.     hlist       HList
  668.     hsb              Scrollbar
  669.     vsb              Scrollbar'''
  670.     
  671.     def __init__(self, master, cnf = { }, **kw):
  672.         TixWidget.__init__(self, master, 'tixDirList', [
  673.             'options'], cnf, kw)
  674.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  675.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  676.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  677.  
  678.     
  679.     def chdir(self, dir):
  680.         self.tk.call(self._w, 'chdir', dir)
  681.  
  682.  
  683.  
  684. class DirTree(TixWidget):
  685.     '''DirTree - Directory Listing in a hierarchical view.
  686.     Displays a tree view of a directory, its previous directories and its
  687.     sub-directories. The user can choose one of the directories displayed
  688.     in the list or change to another directory.
  689.  
  690.     Subwidget       Class
  691.     ---------       -----
  692.     hlist           HList
  693.     hsb             Scrollbar
  694.     vsb             Scrollbar'''
  695.     
  696.     def __init__(self, master, cnf = { }, **kw):
  697.         TixWidget.__init__(self, master, 'tixDirTree', [
  698.             'options'], cnf, kw)
  699.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  700.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  701.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  702.  
  703.     
  704.     def chdir(self, dir):
  705.         self.tk.call(self._w, 'chdir', dir)
  706.  
  707.  
  708.  
  709. class DirSelectBox(TixWidget):
  710.     '''DirSelectBox - Motif style file select box.
  711.     It is generally used for
  712.     the user to choose a file. FileSelectBox stores the files mostly
  713.     recently selected into a ComboBox widget so that they can be quickly
  714.     selected again.
  715.  
  716.     Subwidget       Class
  717.     ---------       -----
  718.     selection       ComboBox
  719.     filter          ComboBox
  720.     dirlist         ScrolledListBox
  721.     filelist        ScrolledListBox'''
  722.     
  723.     def __init__(self, master, cnf = { }, **kw):
  724.         TixWidget.__init__(self, master, 'tixDirSelectBox', [
  725.             'options'], cnf, kw)
  726.         self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist')
  727.         self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx')
  728.  
  729.  
  730.  
  731. class ExFileSelectBox(TixWidget):
  732.     '''ExFileSelectBox - MS Windows style file select box.
  733.     It provides an convenient method for the user to select files.
  734.  
  735.     Subwidget       Class
  736.     ---------       -----
  737.     cancel       Button
  738.     ok              Button
  739.     hidden       Checkbutton
  740.     types       ComboBox
  741.     dir              ComboBox
  742.     file       ComboBox
  743.     dirlist       ScrolledListBox
  744.     filelist       ScrolledListBox'''
  745.     
  746.     def __init__(self, master, cnf = { }, **kw):
  747.         TixWidget.__init__(self, master, 'tixExFileSelectBox', [
  748.             'options'], cnf, kw)
  749.         self.subwidget_list['cancel'] = _dummyButton(self, 'cancel')
  750.         self.subwidget_list['ok'] = _dummyButton(self, 'ok')
  751.         self.subwidget_list['hidden'] = _dummyCheckbutton(self, 'hidden')
  752.         self.subwidget_list['types'] = _dummyComboBox(self, 'types')
  753.         self.subwidget_list['dir'] = _dummyComboBox(self, 'dir')
  754.         self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist')
  755.         self.subwidget_list['file'] = _dummyComboBox(self, 'file')
  756.         self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist')
  757.  
  758.     
  759.     def filter(self):
  760.         self.tk.call(self._w, 'filter')
  761.  
  762.     
  763.     def invoke(self):
  764.         self.tk.call(self._w, 'invoke')
  765.  
  766.  
  767.  
  768. class DirSelectDialog(TixWidget):
  769.     '''The DirSelectDialog widget presents the directories in the file
  770.     system in a dialog window. The user can use this dialog window to
  771.     navigate through the file system to select the desired directory.
  772.  
  773.     Subwidgets       Class
  774.     ----------       -----
  775.     dirbox       DirSelectDialog'''
  776.     
  777.     def __init__(self, master, cnf = { }, **kw):
  778.         TixWidget.__init__(self, master, 'tixDirSelectDialog', [
  779.             'options'], cnf, kw)
  780.         self.subwidget_list['dirbox'] = _dummyDirSelectBox(self, 'dirbox')
  781.  
  782.     
  783.     def popup(self):
  784.         self.tk.call(self._w, 'popup')
  785.  
  786.     
  787.     def popdown(self):
  788.         self.tk.call(self._w, 'popdown')
  789.  
  790.  
  791.  
  792. class ExFileSelectDialog(TixWidget):
  793.     '''ExFileSelectDialog - MS Windows style file select dialog.
  794.     It provides an convenient method for the user to select files.
  795.  
  796.     Subwidgets       Class
  797.     ----------       -----
  798.     fsbox       ExFileSelectBox'''
  799.     
  800.     def __init__(self, master, cnf = { }, **kw):
  801.         TixWidget.__init__(self, master, 'tixExFileSelectDialog', [
  802.             'options'], cnf, kw)
  803.         self.subwidget_list['fsbox'] = _dummyExFileSelectBox(self, 'fsbox')
  804.  
  805.     
  806.     def popup(self):
  807.         self.tk.call(self._w, 'popup')
  808.  
  809.     
  810.     def popdown(self):
  811.         self.tk.call(self._w, 'popdown')
  812.  
  813.  
  814.  
  815. class FileSelectBox(TixWidget):
  816.     '''ExFileSelectBox - Motif style file select box.
  817.     It is generally used for
  818.     the user to choose a file. FileSelectBox stores the files mostly
  819.     recently selected into a ComboBox widget so that they can be quickly
  820.     selected again.
  821.  
  822.     Subwidget       Class
  823.     ---------       -----
  824.     selection       ComboBox
  825.     filter          ComboBox
  826.     dirlist         ScrolledListBox
  827.     filelist        ScrolledListBox'''
  828.     
  829.     def __init__(self, master, cnf = { }, **kw):
  830.         TixWidget.__init__(self, master, 'tixFileSelectBox', [
  831.             'options'], cnf, kw)
  832.         self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist')
  833.         self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist')
  834.         self.subwidget_list['filter'] = _dummyComboBox(self, 'filter')
  835.         self.subwidget_list['selection'] = _dummyComboBox(self, 'selection')
  836.  
  837.     
  838.     def apply_filter(self):
  839.         self.tk.call(self._w, 'filter')
  840.  
  841.     
  842.     def invoke(self):
  843.         self.tk.call(self._w, 'invoke')
  844.  
  845.  
  846.  
  847. class FileSelectDialog(TixWidget):
  848.     '''FileSelectDialog - Motif style file select dialog.
  849.  
  850.     Subwidgets       Class
  851.     ----------       -----
  852.     btns       StdButtonBox
  853.     fsbox       FileSelectBox'''
  854.     
  855.     def __init__(self, master, cnf = { }, **kw):
  856.         TixWidget.__init__(self, master, 'tixFileSelectDialog', [
  857.             'options'], cnf, kw)
  858.         self.subwidget_list['btns'] = _dummyStdButtonBox(self, 'btns')
  859.         self.subwidget_list['fsbox'] = _dummyFileSelectBox(self, 'fsbox')
  860.  
  861.     
  862.     def popup(self):
  863.         self.tk.call(self._w, 'popup')
  864.  
  865.     
  866.     def popdown(self):
  867.         self.tk.call(self._w, 'popdown')
  868.  
  869.  
  870.  
  871. class FileEntry(TixWidget):
  872.     '''FileEntry - Entry field with button that invokes a FileSelectDialog.
  873.     The user can type in the filename manually. Alternatively, the user can
  874.     press the button widget that sits next to the entry, which will bring
  875.     up a file selection dialog.
  876.  
  877.     Subwidgets       Class
  878.     ----------       -----
  879.     button       Button
  880.     entry       Entry'''
  881.     
  882.     def __init__(self, master, cnf = { }, **kw):
  883.         TixWidget.__init__(self, master, 'tixFileEntry', [
  884.             'dialogtype',
  885.             'options'], cnf, kw)
  886.         self.subwidget_list['button'] = _dummyButton(self, 'button')
  887.         self.subwidget_list['entry'] = _dummyEntry(self, 'entry')
  888.  
  889.     
  890.     def invoke(self):
  891.         self.tk.call(self._w, 'invoke')
  892.  
  893.     
  894.     def file_dialog(self):
  895.         pass
  896.  
  897.  
  898.  
  899. class HList(TixWidget):
  900.     '''HList - Hierarchy display  widget can be used to display any data
  901.     that have a hierarchical structure, for example, file system directory
  902.     trees. The list entries are indented and connected by branch lines
  903.     according to their places in the hierachy.
  904.  
  905.     Subwidgets - None'''
  906.     
  907.     def __init__(self, master = None, cnf = { }, **kw):
  908.         TixWidget.__init__(self, master, 'tixHList', [
  909.             'columns',
  910.             'options'], cnf, kw)
  911.  
  912.     
  913.     def add(self, entry, cnf = { }, **kw):
  914.         return self.tk.call(self._w, 'add', entry, *self._options(cnf, kw))
  915.  
  916.     
  917.     def add_child(self, parent = None, cnf = { }, **kw):
  918.         if not parent:
  919.             parent = ''
  920.         
  921.         return self.tk.call(self._w, 'addchild', parent, *self._options(cnf, kw))
  922.  
  923.     
  924.     def anchor_set(self, entry):
  925.         self.tk.call(self._w, 'anchor', 'set', entry)
  926.  
  927.     
  928.     def anchor_clear(self):
  929.         self.tk.call(self._w, 'anchor', 'clear')
  930.  
  931.     
  932.     def column_width(self, col = 0, width = None, chars = None):
  933.         if not chars:
  934.             return self.tk.call(self._w, 'column', 'width', col, width)
  935.         else:
  936.             return self.tk.call(self._w, 'column', 'width', col, '-char', chars)
  937.  
  938.     
  939.     def delete_all(self):
  940.         self.tk.call(self._w, 'delete', 'all')
  941.  
  942.     
  943.     def delete_entry(self, entry):
  944.         self.tk.call(self._w, 'delete', 'entry', entry)
  945.  
  946.     
  947.     def delete_offsprings(self, entry):
  948.         self.tk.call(self._w, 'delete', 'offsprings', entry)
  949.  
  950.     
  951.     def delete_siblings(self, entry):
  952.         self.tk.call(self._w, 'delete', 'siblings', entry)
  953.  
  954.     
  955.     def dragsite_set(self, index):
  956.         self.tk.call(self._w, 'dragsite', 'set', index)
  957.  
  958.     
  959.     def dragsite_clear(self):
  960.         self.tk.call(self._w, 'dragsite', 'clear')
  961.  
  962.     
  963.     def dropsite_set(self, index):
  964.         self.tk.call(self._w, 'dropsite', 'set', index)
  965.  
  966.     
  967.     def dropsite_clear(self):
  968.         self.tk.call(self._w, 'dropsite', 'clear')
  969.  
  970.     
  971.     def header_create(self, col, cnf = { }, **kw):
  972.         self.tk.call(self._w, 'header', 'create', col, *self._options(cnf, kw))
  973.  
  974.     
  975.     def header_configure(self, col, cnf = { }, **kw):
  976.         if cnf is None:
  977.             return _lst2dict(self.tk.split(self.tk.call(self._w, 'header', 'configure', col)))
  978.         
  979.         self.tk.call(self._w, 'header', 'configure', col, *self._options(cnf, kw))
  980.  
  981.     
  982.     def header_cget(self, col, opt):
  983.         return self.tk.call(self._w, 'header', 'cget', col, opt)
  984.  
  985.     
  986.     def header_exists(self, col):
  987.         return self.tk.call(self._w, 'header', 'exists', col)
  988.  
  989.     
  990.     def header_delete(self, col):
  991.         self.tk.call(self._w, 'header', 'delete', col)
  992.  
  993.     
  994.     def header_size(self, col):
  995.         return self.tk.call(self._w, 'header', 'size', col)
  996.  
  997.     
  998.     def hide_entry(self, entry):
  999.         self.tk.call(self._w, 'hide', 'entry', entry)
  1000.  
  1001.     
  1002.     def indicator_create(self, entry, cnf = { }, **kw):
  1003.         self.tk.call(self._w, 'indicator', 'create', entry, *self._options(cnf, kw))
  1004.  
  1005.     
  1006.     def indicator_configure(self, entry, cnf = { }, **kw):
  1007.         if cnf is None:
  1008.             return _lst2dict(self.tk.split(self.tk.call(self._w, 'indicator', 'configure', entry)))
  1009.         
  1010.         self.tk.call(self._w, 'indicator', 'configure', entry, *self._options(cnf, kw))
  1011.  
  1012.     
  1013.     def indicator_cget(self, entry, opt):
  1014.         return self.tk.call(self._w, 'indicator', 'cget', entry, opt)
  1015.  
  1016.     
  1017.     def indicator_exists(self, entry):
  1018.         return self.tk.call(self._w, 'indicator', 'exists', entry)
  1019.  
  1020.     
  1021.     def indicator_delete(self, entry):
  1022.         self.tk.call(self._w, 'indicator', 'delete', entry)
  1023.  
  1024.     
  1025.     def indicator_size(self, entry):
  1026.         return self.tk.call(self._w, 'indicator', 'size', entry)
  1027.  
  1028.     
  1029.     def info_anchor(self):
  1030.         return self.tk.call(self._w, 'info', 'anchor')
  1031.  
  1032.     
  1033.     def info_children(self, entry = None):
  1034.         c = self.tk.call(self._w, 'info', 'children', entry)
  1035.         return self.tk.splitlist(c)
  1036.  
  1037.     
  1038.     def info_data(self, entry):
  1039.         return self.tk.call(self._w, 'info', 'data', entry)
  1040.  
  1041.     
  1042.     def info_exists(self, entry):
  1043.         return self.tk.call(self._w, 'info', 'exists', entry)
  1044.  
  1045.     
  1046.     def info_hidden(self, entry):
  1047.         return self.tk.call(self._w, 'info', 'hidden', entry)
  1048.  
  1049.     
  1050.     def info_next(self, entry):
  1051.         return self.tk.call(self._w, 'info', 'next', entry)
  1052.  
  1053.     
  1054.     def info_parent(self, entry):
  1055.         return self.tk.call(self._w, 'info', 'parent', entry)
  1056.  
  1057.     
  1058.     def info_prev(self, entry):
  1059.         return self.tk.call(self._w, 'info', 'prev', entry)
  1060.  
  1061.     
  1062.     def info_selection(self):
  1063.         c = self.tk.call(self._w, 'info', 'selection')
  1064.         return self.tk.splitlist(c)
  1065.  
  1066.     
  1067.     def item_cget(self, entry, col, opt):
  1068.         return self.tk.call(self._w, 'item', 'cget', entry, col, opt)
  1069.  
  1070.     
  1071.     def item_configure(self, entry, col, cnf = { }, **kw):
  1072.         if cnf is None:
  1073.             return _lst2dict(self.tk.split(self.tk.call(self._w, 'item', 'configure', entry, col)))
  1074.         
  1075.         self.tk.call(self._w, 'item', 'configure', entry, col, *self._options(cnf, kw))
  1076.  
  1077.     
  1078.     def item_create(self, entry, col, cnf = { }, **kw):
  1079.         self.tk.call(self._w, 'item', 'create', entry, col, *self._options(cnf, kw))
  1080.  
  1081.     
  1082.     def item_exists(self, entry, col):
  1083.         return self.tk.call(self._w, 'item', 'exists', entry, col)
  1084.  
  1085.     
  1086.     def item_delete(self, entry, col):
  1087.         self.tk.call(self._w, 'item', 'delete', entry, col)
  1088.  
  1089.     
  1090.     def entrycget(self, entry, opt):
  1091.         return self.tk.call(self._w, 'entrycget', entry, opt)
  1092.  
  1093.     
  1094.     def entryconfigure(self, entry, cnf = { }, **kw):
  1095.         if cnf is None:
  1096.             return _lst2dict(self.tk.split(self.tk.call(self._w, 'entryconfigure', entry)))
  1097.         
  1098.         self.tk.call(self._w, 'entryconfigure', entry, *self._options(cnf, kw))
  1099.  
  1100.     
  1101.     def nearest(self, y):
  1102.         return self.tk.call(self._w, 'nearest', y)
  1103.  
  1104.     
  1105.     def see(self, entry):
  1106.         self.tk.call(self._w, 'see', entry)
  1107.  
  1108.     
  1109.     def selection_clear(self, cnf = { }, **kw):
  1110.         self.tk.call(self._w, 'selection', 'clear', *self._options(cnf, kw))
  1111.  
  1112.     
  1113.     def selection_includes(self, entry):
  1114.         return self.tk.call(self._w, 'selection', 'includes', entry)
  1115.  
  1116.     
  1117.     def selection_set(self, first, last = None):
  1118.         self.tk.call(self._w, 'selection', 'set', first, last)
  1119.  
  1120.     
  1121.     def show_entry(self, entry):
  1122.         return self.tk.call(self._w, 'show', 'entry', entry)
  1123.  
  1124.     
  1125.     def xview(self, *args):
  1126.         self.tk.call(self._w, 'xview', *args)
  1127.  
  1128.     
  1129.     def yview(self, *args):
  1130.         self.tk.call(self._w, 'yview', *args)
  1131.  
  1132.  
  1133.  
  1134. class InputOnly(TixWidget):
  1135.     '''InputOnly - Invisible widget. Unix only.
  1136.  
  1137.     Subwidgets - None'''
  1138.     
  1139.     def __init__(self, master = None, cnf = { }, **kw):
  1140.         TixWidget.__init__(self, master, 'tixInputOnly', None, cnf, kw)
  1141.  
  1142.  
  1143.  
  1144. class LabelEntry(TixWidget):
  1145.     """LabelEntry - Entry field with label. Packages an entry widget
  1146.     and a label into one mega widget. It can beused be used to simplify
  1147.     the creation of ``entry-form'' type of interface.
  1148.  
  1149.     Subwidgets       Class
  1150.     ----------       -----
  1151.     label       Label
  1152.     entry       Entry"""
  1153.     
  1154.     def __init__(self, master = None, cnf = { }, **kw):
  1155.         TixWidget.__init__(self, master, 'tixLabelEntry', [
  1156.             'labelside',
  1157.             'options'], cnf, kw)
  1158.         self.subwidget_list['label'] = _dummyLabel(self, 'label')
  1159.         self.subwidget_list['entry'] = _dummyEntry(self, 'entry')
  1160.  
  1161.  
  1162.  
  1163. class LabelFrame(TixWidget):
  1164.     '''LabelFrame - Labelled Frame container. Packages a frame widget
  1165.     and a label into one mega widget. To create widgets inside a
  1166.     LabelFrame widget, one creates the new widgets relative to the
  1167.     frame subwidget and manage them inside the frame subwidget.
  1168.  
  1169.     Subwidgets       Class
  1170.     ----------       -----
  1171.     label       Label
  1172.     frame       Frame'''
  1173.     
  1174.     def __init__(self, master = None, cnf = { }, **kw):
  1175.         TixWidget.__init__(self, master, 'tixLabelFrame', [
  1176.             'labelside',
  1177.             'options'], cnf, kw)
  1178.         self.subwidget_list['label'] = _dummyLabel(self, 'label')
  1179.         self.subwidget_list['frame'] = _dummyFrame(self, 'frame')
  1180.  
  1181.  
  1182.  
  1183. class ListNoteBook(TixWidget):
  1184.     '''A ListNoteBook widget is very similar to the TixNoteBook widget:
  1185.     it can be used to display many windows in a limited space using a
  1186.     notebook metaphor. The notebook is divided into a stack of pages
  1187.     (windows). At one time only one of these pages can be shown.
  1188.     The user can navigate through these pages by
  1189.     choosing the name of the desired page in the hlist subwidget.'''
  1190.     
  1191.     def __init__(self, master, cnf = { }, **kw):
  1192.         TixWidget.__init__(self, master, 'tixListNoteBook', [
  1193.             'options'], cnf, kw)
  1194.         self.subwidget_list['pane'] = _dummyPanedWindow(self, 'pane', destroy_physically = 0)
  1195.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  1196.         self.subwidget_list['shlist'] = _dummyScrolledHList(self, 'shlist')
  1197.  
  1198.     
  1199.     def add(self, name, cnf = { }, **kw):
  1200.         self.tk.call(self._w, 'add', name, *self._options(cnf, kw))
  1201.         self.subwidget_list[name] = TixSubWidget(self, name)
  1202.         return self.subwidget_list[name]
  1203.  
  1204.     
  1205.     def page(self, name):
  1206.         return self.subwidget(name)
  1207.  
  1208.     
  1209.     def pages(self):
  1210.         names = self.tk.split(self.tk.call(self._w, 'pages'))
  1211.         ret = []
  1212.         for x in names:
  1213.             ret.append(self.subwidget(x))
  1214.         
  1215.         return ret
  1216.  
  1217.     
  1218.     def raise_page(self, name):
  1219.         self.tk.call(self._w, 'raise', name)
  1220.  
  1221.  
  1222.  
  1223. class Meter(TixWidget):
  1224.     '''The Meter widget can be used to show the progress of a background
  1225.     job which may take a long time to execute.
  1226.     '''
  1227.     
  1228.     def __init__(self, master = None, cnf = { }, **kw):
  1229.         TixWidget.__init__(self, master, 'tixMeter', [
  1230.             'options'], cnf, kw)
  1231.  
  1232.  
  1233.  
  1234. class NoteBook(TixWidget):
  1235.     '''NoteBook - Multi-page container widget (tabbed notebook metaphor).
  1236.  
  1237.     Subwidgets       Class
  1238.     ----------       -----
  1239.     nbframe       NoteBookFrame
  1240.     <pages>       page widgets added dynamically with the add method'''
  1241.     
  1242.     def __init__(self, master = None, cnf = { }, **kw):
  1243.         TixWidget.__init__(self, master, 'tixNoteBook', [
  1244.             'options'], cnf, kw)
  1245.         self.subwidget_list['nbframe'] = TixSubWidget(self, 'nbframe', destroy_physically = 0)
  1246.  
  1247.     
  1248.     def add(self, name, cnf = { }, **kw):
  1249.         self.tk.call(self._w, 'add', name, *self._options(cnf, kw))
  1250.         self.subwidget_list[name] = TixSubWidget(self, name)
  1251.         return self.subwidget_list[name]
  1252.  
  1253.     
  1254.     def delete(self, name):
  1255.         self.tk.call(self._w, 'delete', name)
  1256.         self.subwidget_list[name].destroy()
  1257.         del self.subwidget_list[name]
  1258.  
  1259.     
  1260.     def page(self, name):
  1261.         return self.subwidget(name)
  1262.  
  1263.     
  1264.     def pages(self):
  1265.         names = self.tk.split(self.tk.call(self._w, 'pages'))
  1266.         ret = []
  1267.         for x in names:
  1268.             ret.append(self.subwidget(x))
  1269.         
  1270.         return ret
  1271.  
  1272.     
  1273.     def raise_page(self, name):
  1274.         self.tk.call(self._w, 'raise', name)
  1275.  
  1276.     
  1277.     def raised(self):
  1278.         return self.tk.call(self._w, 'raised')
  1279.  
  1280.  
  1281.  
  1282. class NoteBookFrame(TixWidget):
  1283.     pass
  1284.  
  1285.  
  1286. class OptionMenu(TixWidget):
  1287.     '''OptionMenu - creates a menu button of options.
  1288.  
  1289.     Subwidget       Class
  1290.     ---------       -----
  1291.     menubutton      Menubutton
  1292.     menu            Menu'''
  1293.     
  1294.     def __init__(self, master, cnf = { }, **kw):
  1295.         TixWidget.__init__(self, master, 'tixOptionMenu', [
  1296.             'options'], cnf, kw)
  1297.         self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton')
  1298.         self.subwidget_list['menu'] = _dummyMenu(self, 'menu')
  1299.  
  1300.     
  1301.     def add_command(self, name, cnf = { }, **kw):
  1302.         self.tk.call(self._w, 'add', 'command', name, *self._options(cnf, kw))
  1303.  
  1304.     
  1305.     def add_separator(self, name, cnf = { }, **kw):
  1306.         self.tk.call(self._w, 'add', 'separator', name, *self._options(cnf, kw))
  1307.  
  1308.     
  1309.     def delete(self, name):
  1310.         self.tk.call(self._w, 'delete', name)
  1311.  
  1312.     
  1313.     def disable(self, name):
  1314.         self.tk.call(self._w, 'disable', name)
  1315.  
  1316.     
  1317.     def enable(self, name):
  1318.         self.tk.call(self._w, 'enable', name)
  1319.  
  1320.  
  1321.  
  1322. class PanedWindow(TixWidget):
  1323.     '''PanedWindow - Multi-pane container widget
  1324.     allows the user to interactively manipulate the sizes of several
  1325.     panes. The panes can be arranged either vertically or horizontally.The
  1326.     user changes the sizes of the panes by dragging the resize handle
  1327.     between two panes.
  1328.  
  1329.     Subwidgets       Class
  1330.     ----------       -----
  1331.     <panes>       g/p widgets added dynamically with the add method.'''
  1332.     
  1333.     def __init__(self, master, cnf = { }, **kw):
  1334.         TixWidget.__init__(self, master, 'tixPanedWindow', [
  1335.             'orientation',
  1336.             'options'], cnf, kw)
  1337.  
  1338.     
  1339.     def add(self, name, cnf = { }, **kw):
  1340.         self.tk.call(self._w, 'add', name, *self._options(cnf, kw))
  1341.         self.subwidget_list[name] = TixSubWidget(self, name, check_intermediate = 0)
  1342.         return self.subwidget_list[name]
  1343.  
  1344.     
  1345.     def delete(self, name):
  1346.         self.tk.call(self._w, 'delete', name)
  1347.         self.subwidget_list[name].destroy()
  1348.         del self.subwidget_list[name]
  1349.  
  1350.     
  1351.     def forget(self, name):
  1352.         self.tk.call(self._w, 'forget', name)
  1353.  
  1354.     
  1355.     def panecget(self, entry, opt):
  1356.         return self.tk.call(self._w, 'panecget', entry, opt)
  1357.  
  1358.     
  1359.     def paneconfigure(self, entry, cnf = { }, **kw):
  1360.         if cnf is None:
  1361.             return _lst2dict(self.tk.split(self.tk.call(self._w, 'paneconfigure', entry)))
  1362.         
  1363.         self.tk.call(self._w, 'paneconfigure', entry, *self._options(cnf, kw))
  1364.  
  1365.     
  1366.     def panes(self):
  1367.         names = self.tk.call(self._w, 'panes')
  1368.         ret = []
  1369.         for x in names:
  1370.             ret.append(self.subwidget(x))
  1371.         
  1372.         return ret
  1373.  
  1374.  
  1375.  
  1376. class PopupMenu(TixWidget):
  1377.     '''PopupMenu widget can be used as a replacement of the tk_popup command.
  1378.     The advantage of the Tix PopupMenu widget is it requires less application
  1379.     code to manipulate.
  1380.  
  1381.  
  1382.     Subwidgets       Class
  1383.     ----------       -----
  1384.     menubutton       Menubutton
  1385.     menu       Menu'''
  1386.     
  1387.     def __init__(self, master, cnf = { }, **kw):
  1388.         TixWidget.__init__(self, master, 'tixPopupMenu', [
  1389.             'options'], cnf, kw)
  1390.         self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton')
  1391.         self.subwidget_list['menu'] = _dummyMenu(self, 'menu')
  1392.  
  1393.     
  1394.     def bind_widget(self, widget):
  1395.         self.tk.call(self._w, 'bind', widget._w)
  1396.  
  1397.     
  1398.     def unbind_widget(self, widget):
  1399.         self.tk.call(self._w, 'unbind', widget._w)
  1400.  
  1401.     
  1402.     def post_widget(self, widget, x, y):
  1403.         self.tk.call(self._w, 'post', widget._w, x, y)
  1404.  
  1405.  
  1406.  
  1407. class ResizeHandle(TixWidget):
  1408.     '''Internal widget to draw resize handles on Scrolled widgets.'''
  1409.     
  1410.     def __init__(self, master, cnf = { }, **kw):
  1411.         flags = [
  1412.             'options',
  1413.             'command',
  1414.             'cursorfg',
  1415.             'cursorbg',
  1416.             'handlesize',
  1417.             'hintcolor',
  1418.             'hintwidth',
  1419.             'x',
  1420.             'y']
  1421.         TixWidget.__init__(self, master, 'tixResizeHandle', flags, cnf, kw)
  1422.  
  1423.     
  1424.     def attach_widget(self, widget):
  1425.         self.tk.call(self._w, 'attachwidget', widget._w)
  1426.  
  1427.     
  1428.     def detach_widget(self, widget):
  1429.         self.tk.call(self._w, 'detachwidget', widget._w)
  1430.  
  1431.     
  1432.     def hide(self, widget):
  1433.         self.tk.call(self._w, 'hide', widget._w)
  1434.  
  1435.     
  1436.     def show(self, widget):
  1437.         self.tk.call(self._w, 'show', widget._w)
  1438.  
  1439.  
  1440.  
  1441. class ScrolledHList(TixWidget):
  1442.     '''ScrolledHList - HList with automatic scrollbars.'''
  1443.     
  1444.     def __init__(self, master, cnf = { }, **kw):
  1445.         TixWidget.__init__(self, master, 'tixScrolledHList', [
  1446.             'options'], cnf, kw)
  1447.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  1448.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1449.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1450.  
  1451.  
  1452.  
  1453. class ScrolledListBox(TixWidget):
  1454.     '''ScrolledListBox - Listbox with automatic scrollbars.'''
  1455.     
  1456.     def __init__(self, master, cnf = { }, **kw):
  1457.         TixWidget.__init__(self, master, 'tixScrolledListBox', [
  1458.             'options'], cnf, kw)
  1459.         self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox')
  1460.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1461.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1462.  
  1463.  
  1464.  
  1465. class ScrolledText(TixWidget):
  1466.     '''ScrolledText - Text with automatic scrollbars.'''
  1467.     
  1468.     def __init__(self, master, cnf = { }, **kw):
  1469.         TixWidget.__init__(self, master, 'tixScrolledText', [
  1470.             'options'], cnf, kw)
  1471.         self.subwidget_list['text'] = _dummyText(self, 'text')
  1472.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1473.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1474.  
  1475.  
  1476.  
  1477. class ScrolledTList(TixWidget):
  1478.     '''ScrolledTList - TList with automatic scrollbars.'''
  1479.     
  1480.     def __init__(self, master, cnf = { }, **kw):
  1481.         TixWidget.__init__(self, master, 'tixScrolledTList', [
  1482.             'options'], cnf, kw)
  1483.         self.subwidget_list['tlist'] = _dummyTList(self, 'tlist')
  1484.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1485.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1486.  
  1487.  
  1488.  
  1489. class ScrolledWindow(TixWidget):
  1490.     '''ScrolledWindow - Window with automatic scrollbars.'''
  1491.     
  1492.     def __init__(self, master, cnf = { }, **kw):
  1493.         TixWidget.__init__(self, master, 'tixScrolledWindow', [
  1494.             'options'], cnf, kw)
  1495.         self.subwidget_list['window'] = _dummyFrame(self, 'window')
  1496.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1497.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1498.  
  1499.  
  1500.  
  1501. class Select(TixWidget):
  1502.     '''Select - Container of button subwidgets. It can be used to provide
  1503.     radio-box or check-box style of selection options for the user.
  1504.  
  1505.     Subwidgets are buttons added dynamically using the add method.'''
  1506.     
  1507.     def __init__(self, master, cnf = { }, **kw):
  1508.         TixWidget.__init__(self, master, 'tixSelect', [
  1509.             'allowzero',
  1510.             'radio',
  1511.             'orientation',
  1512.             'labelside',
  1513.             'options'], cnf, kw)
  1514.         self.subwidget_list['label'] = _dummyLabel(self, 'label')
  1515.  
  1516.     
  1517.     def add(self, name, cnf = { }, **kw):
  1518.         self.tk.call(self._w, 'add', name, *self._options(cnf, kw))
  1519.         self.subwidget_list[name] = _dummyButton(self, name)
  1520.         return self.subwidget_list[name]
  1521.  
  1522.     
  1523.     def invoke(self, name):
  1524.         self.tk.call(self._w, 'invoke', name)
  1525.  
  1526.  
  1527.  
  1528. class Shell(TixWidget):
  1529.     '''Toplevel window.
  1530.  
  1531.     Subwidgets - None'''
  1532.     
  1533.     def __init__(self, master = None, cnf = { }, **kw):
  1534.         TixWidget.__init__(self, master, 'tixShell', [
  1535.             'options',
  1536.             'title'], cnf, kw)
  1537.  
  1538.  
  1539.  
  1540. class DialogShell(TixWidget):
  1541.     '''Toplevel window, with popup popdown and center methods.
  1542.     It tells the window manager that it is a dialog window and should be
  1543.     treated specially. The exact treatment depends on the treatment of
  1544.     the window manager.
  1545.  
  1546.     Subwidgets - None'''
  1547.     
  1548.     def __init__(self, master = None, cnf = { }, **kw):
  1549.         TixWidget.__init__(self, master, 'tixDialogShell', [
  1550.             'options',
  1551.             'title',
  1552.             'mapped',
  1553.             'minheight',
  1554.             'minwidth',
  1555.             'parent',
  1556.             'transient'], cnf, kw)
  1557.  
  1558.     
  1559.     def popdown(self):
  1560.         self.tk.call(self._w, 'popdown')
  1561.  
  1562.     
  1563.     def popup(self):
  1564.         self.tk.call(self._w, 'popup')
  1565.  
  1566.     
  1567.     def center(self):
  1568.         self.tk.call(self._w, 'center')
  1569.  
  1570.  
  1571.  
  1572. class StdButtonBox(TixWidget):
  1573.     '''StdButtonBox - Standard Button Box (OK, Apply, Cancel and Help) '''
  1574.     
  1575.     def __init__(self, master = None, cnf = { }, **kw):
  1576.         TixWidget.__init__(self, master, 'tixStdButtonBox', [
  1577.             'orientation',
  1578.             'options'], cnf, kw)
  1579.         self.subwidget_list['ok'] = _dummyButton(self, 'ok')
  1580.         self.subwidget_list['apply'] = _dummyButton(self, 'apply')
  1581.         self.subwidget_list['cancel'] = _dummyButton(self, 'cancel')
  1582.         self.subwidget_list['help'] = _dummyButton(self, 'help')
  1583.  
  1584.     
  1585.     def invoke(self, name):
  1586.         if self.subwidget_list.has_key(name):
  1587.             self.tk.call(self._w, 'invoke', name)
  1588.         
  1589.  
  1590.  
  1591.  
  1592. class TList(TixWidget):
  1593.     '''TList - Hierarchy display widget which can be
  1594.     used to display data in a tabular format. The list entries of a TList
  1595.     widget are similar to the entries in the Tk listbox widget. The main
  1596.     differences are (1) the TList widget can display the list entries in a
  1597.     two dimensional format and (2) you can use graphical images as well as
  1598.     multiple colors and fonts for the list entries.
  1599.  
  1600.     Subwidgets - None'''
  1601.     
  1602.     def __init__(self, master = None, cnf = { }, **kw):
  1603.         TixWidget.__init__(self, master, 'tixTList', [
  1604.             'options'], cnf, kw)
  1605.  
  1606.     
  1607.     def active_set(self, index):
  1608.         self.tk.call(self._w, 'active', 'set', index)
  1609.  
  1610.     
  1611.     def active_clear(self):
  1612.         self.tk.call(self._w, 'active', 'clear')
  1613.  
  1614.     
  1615.     def anchor_set(self, index):
  1616.         self.tk.call(self._w, 'anchor', 'set', index)
  1617.  
  1618.     
  1619.     def anchor_clear(self):
  1620.         self.tk.call(self._w, 'anchor', 'clear')
  1621.  
  1622.     
  1623.     def delete(self, from_, to = None):
  1624.         self.tk.call(self._w, 'delete', from_, to)
  1625.  
  1626.     
  1627.     def dragsite_set(self, index):
  1628.         self.tk.call(self._w, 'dragsite', 'set', index)
  1629.  
  1630.     
  1631.     def dragsite_clear(self):
  1632.         self.tk.call(self._w, 'dragsite', 'clear')
  1633.  
  1634.     
  1635.     def dropsite_set(self, index):
  1636.         self.tk.call(self._w, 'dropsite', 'set', index)
  1637.  
  1638.     
  1639.     def dropsite_clear(self):
  1640.         self.tk.call(self._w, 'dropsite', 'clear')
  1641.  
  1642.     
  1643.     def insert(self, index, cnf = { }, **kw):
  1644.         self.tk.call(self._w, 'insert', index, *self._options(cnf, kw))
  1645.  
  1646.     
  1647.     def info_active(self):
  1648.         return self.tk.call(self._w, 'info', 'active')
  1649.  
  1650.     
  1651.     def info_anchor(self):
  1652.         return self.tk.call(self._w, 'info', 'anchor')
  1653.  
  1654.     
  1655.     def info_down(self, index):
  1656.         return self.tk.call(self._w, 'info', 'down', index)
  1657.  
  1658.     
  1659.     def info_left(self, index):
  1660.         return self.tk.call(self._w, 'info', 'left', index)
  1661.  
  1662.     
  1663.     def info_right(self, index):
  1664.         return self.tk.call(self._w, 'info', 'right', index)
  1665.  
  1666.     
  1667.     def info_selection(self):
  1668.         c = self.tk.call(self._w, 'info', 'selection')
  1669.         return self.tk.splitlist(c)
  1670.  
  1671.     
  1672.     def info_size(self):
  1673.         return self.tk.call(self._w, 'info', 'size')
  1674.  
  1675.     
  1676.     def info_up(self, index):
  1677.         return self.tk.call(self._w, 'info', 'up', index)
  1678.  
  1679.     
  1680.     def nearest(self, x, y):
  1681.         return self.tk.call(self._w, 'nearest', x, y)
  1682.  
  1683.     
  1684.     def see(self, index):
  1685.         self.tk.call(self._w, 'see', index)
  1686.  
  1687.     
  1688.     def selection_clear(self, cnf = { }, **kw):
  1689.         self.tk.call(self._w, 'selection', 'clear', *self._options(cnf, kw))
  1690.  
  1691.     
  1692.     def selection_includes(self, index):
  1693.         return self.tk.call(self._w, 'selection', 'includes', index)
  1694.  
  1695.     
  1696.     def selection_set(self, first, last = None):
  1697.         self.tk.call(self._w, 'selection', 'set', first, last)
  1698.  
  1699.     
  1700.     def xview(self, *args):
  1701.         self.tk.call(self._w, 'xview', *args)
  1702.  
  1703.     
  1704.     def yview(self, *args):
  1705.         self.tk.call(self._w, 'yview', *args)
  1706.  
  1707.  
  1708.  
  1709. class Tree(TixWidget):
  1710.     '''Tree - The tixTree widget can be used to display hierachical
  1711.     data in a tree form. The user can adjust
  1712.     the view of the tree by opening or closing parts of the tree.'''
  1713.     
  1714.     def __init__(self, master = None, cnf = { }, **kw):
  1715.         TixWidget.__init__(self, master, 'tixTree', [
  1716.             'options'], cnf, kw)
  1717.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  1718.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1719.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1720.  
  1721.     
  1722.     def autosetmode(self):
  1723.         '''This command calls the setmode method for all the entries in this
  1724.      Tree widget: if an entry has no child entries, its mode is set to
  1725.      none. Otherwise, if the entry has any hidden child entries, its mode is
  1726.      set to open; otherwise its mode is set to close.'''
  1727.         self.tk.call(self._w, 'autosetmode')
  1728.  
  1729.     
  1730.     def close(self, entrypath):
  1731.         '''Close the entry given by entryPath if its mode is close.'''
  1732.         self.tk.call(self._w, 'close', entrypath)
  1733.  
  1734.     
  1735.     def getmode(self, entrypath):
  1736.         '''Returns the current mode of the entry given by entryPath.'''
  1737.         return self.tk.call(self._w, 'getmode', entrypath)
  1738.  
  1739.     
  1740.     def open(self, entrypath):
  1741.         '''Open the entry given by entryPath if its mode is open.'''
  1742.         self.tk.call(self._w, 'open', entrypath)
  1743.  
  1744.     
  1745.     def setmode(self, entrypath, mode = 'none'):
  1746.         '''This command is used to indicate whether the entry given by
  1747.      entryPath has children entries and whether the children are visible. mode
  1748.      must be one of open, close or none. If mode is set to open, a (+)
  1749.      indicator is drawn next the the entry. If mode is set to close, a (-)
  1750.      indicator is drawn next the the entry. If mode is set to none, no
  1751.      indicators will be drawn for this entry. The default mode is none. The
  1752.      open mode indicates the entry has hidden children and this entry can be
  1753.      opened by the user. The close mode indicates that all the children of the
  1754.      entry are now visible and the entry can be closed by the user.'''
  1755.         self.tk.call(self._w, 'setmode', entrypath, mode)
  1756.  
  1757.  
  1758.  
  1759. class CheckList(TixWidget):
  1760.     '''The CheckList widget
  1761.     displays a list of items to be selected by the user. CheckList acts
  1762.     similarly to the Tk checkbutton or radiobutton widgets, except it is
  1763.     capable of handling many more items than checkbuttons or radiobuttons.
  1764.     '''
  1765.     
  1766.     def __init__(self, master = None, cnf = { }, **kw):
  1767.         TixWidget.__init__(self, master, 'tixCheckList', [
  1768.             'options'], cnf, kw)
  1769.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  1770.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1771.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1772.  
  1773.     
  1774.     def autosetmode(self):
  1775.         '''This command calls the setmode method for all the entries in this
  1776.      Tree widget: if an entry has no child entries, its mode is set to
  1777.      none. Otherwise, if the entry has any hidden child entries, its mode is
  1778.      set to open; otherwise its mode is set to close.'''
  1779.         self.tk.call(self._w, 'autosetmode')
  1780.  
  1781.     
  1782.     def close(self, entrypath):
  1783.         '''Close the entry given by entryPath if its mode is close.'''
  1784.         self.tk.call(self._w, 'close', entrypath)
  1785.  
  1786.     
  1787.     def getmode(self, entrypath):
  1788.         '''Returns the current mode of the entry given by entryPath.'''
  1789.         return self.tk.call(self._w, 'getmode', entrypath)
  1790.  
  1791.     
  1792.     def open(self, entrypath):
  1793.         '''Open the entry given by entryPath if its mode is open.'''
  1794.         self.tk.call(self._w, 'open', entrypath)
  1795.  
  1796.     
  1797.     def getselection(self, mode = 'on'):
  1798.         '''Returns a list of items whose status matches status. If status is
  1799.      not specified, the list of items in the "on" status will be returned.
  1800.      Mode can be on, off, default'''
  1801.         c = self.tk.split(self.tk.call(self._w, 'getselection', mode))
  1802.         return self.tk.splitlist(c)
  1803.  
  1804.     
  1805.     def getstatus(self, entrypath):
  1806.         '''Returns the current status of entryPath.'''
  1807.         return self.tk.call(self._w, 'getstatus', entrypath)
  1808.  
  1809.     
  1810.     def setstatus(self, entrypath, mode = 'on'):
  1811.         '''Sets the status of entryPath to be status. A bitmap will be
  1812.      displayed next to the entry its status is on, off or default.'''
  1813.         self.tk.call(self._w, 'setstatus', entrypath, mode)
  1814.  
  1815.  
  1816.  
  1817. class _dummyButton(Button, TixSubWidget):
  1818.     
  1819.     def __init__(self, master, name, destroy_physically = 1):
  1820.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1821.  
  1822.  
  1823.  
  1824. class _dummyCheckbutton(Checkbutton, TixSubWidget):
  1825.     
  1826.     def __init__(self, master, name, destroy_physically = 1):
  1827.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1828.  
  1829.  
  1830.  
  1831. class _dummyEntry(Entry, TixSubWidget):
  1832.     
  1833.     def __init__(self, master, name, destroy_physically = 1):
  1834.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1835.  
  1836.  
  1837.  
  1838. class _dummyFrame(Frame, TixSubWidget):
  1839.     
  1840.     def __init__(self, master, name, destroy_physically = 1):
  1841.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1842.  
  1843.  
  1844.  
  1845. class _dummyLabel(Label, TixSubWidget):
  1846.     
  1847.     def __init__(self, master, name, destroy_physically = 1):
  1848.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1849.  
  1850.  
  1851.  
  1852. class _dummyListbox(Listbox, TixSubWidget):
  1853.     
  1854.     def __init__(self, master, name, destroy_physically = 1):
  1855.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1856.  
  1857.  
  1858.  
  1859. class _dummyMenu(Menu, TixSubWidget):
  1860.     
  1861.     def __init__(self, master, name, destroy_physically = 1):
  1862.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1863.  
  1864.  
  1865.  
  1866. class _dummyMenubutton(Menubutton, TixSubWidget):
  1867.     
  1868.     def __init__(self, master, name, destroy_physically = 1):
  1869.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1870.  
  1871.  
  1872.  
  1873. class _dummyScrollbar(Scrollbar, TixSubWidget):
  1874.     
  1875.     def __init__(self, master, name, destroy_physically = 1):
  1876.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1877.  
  1878.  
  1879.  
  1880. class _dummyText(Text, TixSubWidget):
  1881.     
  1882.     def __init__(self, master, name, destroy_physically = 1):
  1883.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1884.  
  1885.  
  1886.  
  1887. class _dummyScrolledListBox(ScrolledListBox, TixSubWidget):
  1888.     
  1889.     def __init__(self, master, name, destroy_physically = 1):
  1890.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1891.         self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox')
  1892.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1893.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1894.  
  1895.  
  1896.  
  1897. class _dummyHList(HList, TixSubWidget):
  1898.     
  1899.     def __init__(self, master, name, destroy_physically = 1):
  1900.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1901.  
  1902.  
  1903.  
  1904. class _dummyScrolledHList(ScrolledHList, TixSubWidget):
  1905.     
  1906.     def __init__(self, master, name, destroy_physically = 1):
  1907.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1908.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  1909.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1910.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1911.  
  1912.  
  1913.  
  1914. class _dummyTList(TList, TixSubWidget):
  1915.     
  1916.     def __init__(self, master, name, destroy_physically = 1):
  1917.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1918.  
  1919.  
  1920.  
  1921. class _dummyComboBox(ComboBox, TixSubWidget):
  1922.     
  1923.     def __init__(self, master, name, destroy_physically = 1):
  1924.         TixSubWidget.__init__(self, master, name, [
  1925.             'fancy',
  1926.             destroy_physically])
  1927.         self.subwidget_list['label'] = _dummyLabel(self, 'label')
  1928.         self.subwidget_list['entry'] = _dummyEntry(self, 'entry')
  1929.         self.subwidget_list['arrow'] = _dummyButton(self, 'arrow')
  1930.         self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, 'slistbox')
  1931.         
  1932.         try:
  1933.             self.subwidget_list['tick'] = _dummyButton(self, 'tick')
  1934.             self.subwidget_list['cross'] = _dummyButton(self, 'cross')
  1935.         except TypeError:
  1936.             pass
  1937.  
  1938.  
  1939.  
  1940.  
  1941. class _dummyDirList(DirList, TixSubWidget):
  1942.     
  1943.     def __init__(self, master, name, destroy_physically = 1):
  1944.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1945.         self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
  1946.         self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
  1947.         self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
  1948.  
  1949.  
  1950.  
  1951. class _dummyDirSelectBox(DirSelectBox, TixSubWidget):
  1952.     
  1953.     def __init__(self, master, name, destroy_physically = 1):
  1954.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1955.         self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist')
  1956.         self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx')
  1957.  
  1958.  
  1959.  
  1960. class _dummyExFileSelectBox(ExFileSelectBox, TixSubWidget):
  1961.     
  1962.     def __init__(self, master, name, destroy_physically = 1):
  1963.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1964.         self.subwidget_list['cancel'] = _dummyButton(self, 'cancel')
  1965.         self.subwidget_list['ok'] = _dummyButton(self, 'ok')
  1966.         self.subwidget_list['hidden'] = _dummyCheckbutton(self, 'hidden')
  1967.         self.subwidget_list['types'] = _dummyComboBox(self, 'types')
  1968.         self.subwidget_list['dir'] = _dummyComboBox(self, 'dir')
  1969.         self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist')
  1970.         self.subwidget_list['file'] = _dummyComboBox(self, 'file')
  1971.         self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist')
  1972.  
  1973.  
  1974.  
  1975. class _dummyFileSelectBox(FileSelectBox, TixSubWidget):
  1976.     
  1977.     def __init__(self, master, name, destroy_physically = 1):
  1978.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1979.         self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist')
  1980.         self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist')
  1981.         self.subwidget_list['filter'] = _dummyComboBox(self, 'filter')
  1982.         self.subwidget_list['selection'] = _dummyComboBox(self, 'selection')
  1983.  
  1984.  
  1985.  
  1986. class _dummyFileComboBox(ComboBox, TixSubWidget):
  1987.     
  1988.     def __init__(self, master, name, destroy_physically = 1):
  1989.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1990.         self.subwidget_list['dircbx'] = _dummyComboBox(self, 'dircbx')
  1991.  
  1992.  
  1993.  
  1994. class _dummyStdButtonBox(StdButtonBox, TixSubWidget):
  1995.     
  1996.     def __init__(self, master, name, destroy_physically = 1):
  1997.         TixSubWidget.__init__(self, master, name, destroy_physically)
  1998.         self.subwidget_list['ok'] = _dummyButton(self, 'ok')
  1999.         self.subwidget_list['apply'] = _dummyButton(self, 'apply')
  2000.         self.subwidget_list['cancel'] = _dummyButton(self, 'cancel')
  2001.         self.subwidget_list['help'] = _dummyButton(self, 'help')
  2002.  
  2003.  
  2004.  
  2005. class _dummyNoteBookFrame(NoteBookFrame, TixSubWidget):
  2006.     
  2007.     def __init__(self, master, name, destroy_physically = 0):
  2008.         TixSubWidget.__init__(self, master, name, destroy_physically)
  2009.  
  2010.  
  2011.  
  2012. class _dummyPanedWindow(PanedWindow, TixSubWidget):
  2013.     
  2014.     def __init__(self, master, name, destroy_physically = 1):
  2015.         TixSubWidget.__init__(self, master, name, destroy_physically)
  2016.  
  2017.  
  2018.  
  2019. def OptionName(widget):
  2020.     '''Returns the qualified path name for the widget. Normally used to set
  2021.     default options for subwidgets. See tixwidgets.py'''
  2022.     return widget.tk.call('tixOptionName', widget._w)
  2023.  
  2024.  
  2025. def FileTypeList(dict):
  2026.     s = ''
  2027.     for type in dict.keys():
  2028.         s = s + '{{' + type + '} {' + type + ' - ' + dict[type] + '}} '
  2029.     
  2030.     return s
  2031.  
  2032.  
  2033. class CObjView(TixWidget):
  2034.     '''This file implements the Canvas Object View widget. This is a base
  2035.     class of IconView. It implements automatic placement/adjustment of the
  2036.     scrollbars according to the canvas objects inside the canvas subwidget.
  2037.     The scrollbars are adjusted so that the canvas is just large enough
  2038.     to see all the objects.
  2039.     '''
  2040.     pass
  2041.  
  2042.  
  2043. class Grid(TixWidget):
  2044.     '''The Tix Grid command creates a new window  and makes it into a
  2045.     tixGrid widget. Additional options, may be specified on the command
  2046.     line or in the option database to configure aspects such as its cursor
  2047.     and relief.
  2048.  
  2049.     A Grid widget displays its contents in a two dimensional grid of cells.
  2050.     Each cell may contain one Tix display item, which may be in text,
  2051.     graphics or other formats. See the DisplayStyle class for more information
  2052.     about Tix display items. Individual cells, or groups of cells, can be
  2053.     formatted with a wide range of attributes, such as its color, relief and
  2054.     border.
  2055.  
  2056.     Subwidgets - None'''
  2057.     
  2058.     def __init__(self, master = None, cnf = { }, **kw):
  2059.         static = []
  2060.         self.cnf = cnf
  2061.         TixWidget.__init__(self, master, 'tixGrid', static, cnf, kw)
  2062.  
  2063.     
  2064.     def anchor_get(self):
  2065.         '''Get the (x,y) coordinate of the current anchor cell'''
  2066.         return self._getints(self.tk.call(self, 'anchor', 'get'))
  2067.  
  2068.     
  2069.     def delete_row(self, from_, to = None):
  2070.         '''Delete rows between from_ and to inclusive.
  2071.         If to is not provided,  delete only row at from_'''
  2072.         if to is None:
  2073.             self.tk.call(self, 'delete', 'row', from_)
  2074.         else:
  2075.             self.tk.call(self, 'delete', 'row', from_, to)
  2076.  
  2077.     
  2078.     def delete_column(self, from_, to = None):
  2079.         '''Delete columns between from_ and to inclusive.
  2080.         If to is not provided,  delete only column at from_'''
  2081.         if to is None:
  2082.             self.tk.call(self, 'delete', 'column', from_)
  2083.         else:
  2084.             self.tk.call(self, 'delete', 'column', from_, to)
  2085.  
  2086.     
  2087.     def entrycget(self, x, y, option):
  2088.         '''Get the option value for cell at (x,y)'''
  2089.         return self.tk.call(self, 'entrycget', x, y, option)
  2090.  
  2091.     
  2092.     def entryconfigure(self, x, y, **kw):
  2093.         return self.tk.call(self, 'entryconfigure', x, y, *self._options(None, kw))
  2094.  
  2095.     
  2096.     def info_exists(self, x, y):
  2097.         '''Return True if display item exists at (x,y)'''
  2098.         return bool(int(self.tk.call(self, 'info', 'exists', x, y)))
  2099.  
  2100.     
  2101.     def info_bbox(self, x, y):
  2102.         return self.tk.call(self, 'info', 'bbox', x, y)
  2103.  
  2104.     
  2105.     def nearest(self, x, y):
  2106.         '''Return coordinate of cell nearest pixel coordinate (x,y)'''
  2107.         return self._getints(self.tk.call(self, 'nearest', x, y))
  2108.  
  2109.     
  2110.     def set(self, x, y, itemtype = None, **kw):
  2111.         args = self._options(self.cnf, kw)
  2112.         if itemtype is not None:
  2113.             args = ('-itemtype', itemtype) + args
  2114.         
  2115.         self.tk.call(self, 'set', x, y, *args)
  2116.  
  2117.     
  2118.     def xview(self):
  2119.         return self._getdoubles(self.tk.call(self, 'xview'))
  2120.  
  2121.     
  2122.     def xview_moveto(self, fraction):
  2123.         self.tk.call(self, 'xview', 'moveto', fraction)
  2124.  
  2125.     
  2126.     def xview_scroll(self, count, what = 'units'):
  2127.         '''Scroll right (count>0) or left <count> of units|pages'''
  2128.         self.tk.call(self, 'xview', 'scroll', count, what)
  2129.  
  2130.     
  2131.     def yview(self):
  2132.         return self._getdoubles(self.tk.call(self, 'yview'))
  2133.  
  2134.     
  2135.     def yview_moveto(self, fraction):
  2136.         self.tk.call(self, 'ysview', 'moveto', fraction)
  2137.  
  2138.     
  2139.     def yview_scroll(self, count, what = 'units'):
  2140.         '''Scroll down (count>0) or up <count> of units|pages'''
  2141.         self.tk.call(self, 'yview', 'scroll', count, what)
  2142.  
  2143.  
  2144.  
  2145. class ScrolledGrid(Grid):
  2146.     '''Scrolled Grid widgets'''
  2147.     
  2148.     def __init__(self, master = None, cnf = { }, **kw):
  2149.         static = []
  2150.         self.cnf = cnf
  2151.         TixWidget.__init__(self, master, 'tixScrolledGrid', static, cnf, kw)
  2152.  
  2153.  
  2154.